Status API

The Status API retrieves information about the state of rules that collectively determine if the system is working correctly.

The system periodically checks the state of the rules. To force the status to be updated, refer to the Scan API.

URL

https://<server>/unifiedconfig/config/status

Operations

Response Parameters

Example Get Response

<results>
   <statuses>
      <status>
         <name>CPU_USAGE</name>
         <category>SYSTEM_HEALTH</category>
         <level>OK</level>
         <detail xsi:type="metricDataDetail" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <actual>2</actual>
         </detail>
         <machines>
            <machine>
               <refURL>/unifiedconfig/config/machineinventory/7507</refURL>
               <machineType>CVP</machineType>
               <name>CVP2-A</name>
               <side>sideA</side>
            </machine>
         </machines>
      </status>
      <status>
         <name>MEMORY_USAGE</name>
         <category>SYSTEM_HEALTH</category>
         <level>OK</level>
         <detail xsi:type="metricDataDetail" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <actual>17</actual>
         </detail>
         <machines>
            <machine>
               <refURL>/unifiedconfig/config/machineinventory/7507</refURL>
               <machineType>CVP</machineType>
               <name>CVP2-A</name>
               <side>sideA</side>
            </machine>
         </machines>
      </status>
   </statuses>
</results>